/* Updated CSS with Enhanced Styling */
:root {
    --primary: #B39755;
    --primary-light: #d6c7a0;
    --primary-dark: #9a8249;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
    --darker-gray: #495057;
    --secondary: #1a2a3a;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
    --gradient: linear-gradient(135deg, #B39755, #9a8249);
    --section-radius: 18px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--darker-gray);
    background-color: var(--light-gray);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}
/* Modern Navbar System */
.navbar {
  --gold-primary: #c5a338;
  --gold-hover: rgba(197, 163, 56, 0.12);
  --gold-active: rgba(197, 163, 56, 0.18);
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 12px 5%;
  transition: 
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease,
    background 0.4s ease;
  z-index: 1000;
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.86);
}

.navbar-brand {
  font-weight: 800;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: var(--text-primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-brand::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.navbar-brand:hover {
  color: var(--gold-primary);
}

.navbar-brand:hover::after {
  width: 100%;
}

.navbar-nav {
  gap: 4px;
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--text-secondary);
  padding: 10px 18px;
  transition: 
    color 0.25s ease,
    background 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.2s ease;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-primary);
  z-index: -1;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navbar-nav .nav-link:hover {
  color: var(--text-primary);
  background: var(--gold-hover);
  transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
  color: var(--gold-primary) !important;
  font-weight: 700;
  background: var(--gold-active);
  box-shadow: inset 0 0 0 1px rgba(197, 163, 56, 0.25);
}

.navbar-nav .nav-link.active::before {
  transform: scaleY(0.05);
}
/* Dropdown menu styling */
.navbar .dropdown-menu {
  background-color: #fff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  min-width: 240px;
  transition: all 0.3s ease-in-out;
}

.navbar .dropdown-menu .dropdown-item {
  padding: 10px 20px;
  color: rgb(255, 157, 0);
  font-weight: 500;
  transition: background-color 0.2s, color 0.2s;
}

.navbar .dropdown-menu .dropdown-item:hover {
  background-color: rgb(255, 243, 220);
  color: #000;
  font-weight: 600;
  border-left: 4px solid rgb(255, 157, 0);
}

/* Dropdown arrow */
.navbar .nav-link.dropdown-toggle::after {
  border-top-color: rgb(255, 157, 0);
  margin-left: 6px;
}

/* Scrolled navbar dropdown behavior */
#navbar.scrolled .dropdown-menu .dropdown-item {
  color: #000;
}

#navbar.scrolled .dropdown-menu .dropdown-item:hover {
  background-color: rgb(255, 236, 202);
  color: rgb(255, 157, 0);
}

/* Fade-in dropdown animation */
.dropdown-menu {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.show > .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Mobile specific tweaks */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: #fff;
    border-radius: 0 0 12px 12px;
    padding: 1rem;
  }

  .navbar .nav-link,
  .navbar .dropdown-menu .dropdown-item {
    color: #000 !important;
  }

  .navbar .dropdown-menu {
    box-shadow: none;
    border-radius: 0;
    padding-left: 1rem;
  }

  .navbar .dropdown-menu .dropdown-item {
    padding: 8px 0;
    border-left: 3px solid transparent;
  }

  .navbar .dropdown-menu .dropdown-item:hover {
    background-color: transparent;
    color: rgb(255, 157, 0);
    border-left-color: rgb(255, 157, 0);
  }
}
/* Dynamic scroll effects */
.navbar.scrolled {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 8px 5%;
  background-color: rgba(255, 255, 255, 0.96);
}

/* Mobile enhancements */
@media (max-width: 768px) {
  .navbar {
    padding: 12px 7%;
    backdrop-filter: none;
    background-color: #fff;
  }
  
  .navbar-nav {
    gap: 2px;
    padding: 8px 0;
  }
  
  .navbar-nav .nav-link {
    padding: 12px 16px;
    border-radius: 8px;
    margin: 4px 0;
  }
  
  .navbar.scrolled {
    padding: 8px 7%;
  }
}
/* Hero Section - Enhanced */
.hero {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), 
        url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') 
        no-repeat center center/cover;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: fadeInDown 0.8s ease-out;
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    opacity: 0.92;
    animation: fadeInUp 0.8s 0.2s ease-out both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.4s ease-out both;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(179, 151, 85, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 7px 25px rgba(179, 151, 85, 0.6);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid var(--primary-light);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

/* Section Styles - Enhanced */
section {
    padding: 8rem 0;
}

.section-title {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--secondary);
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: var(--gradient);
    margin: 1.5rem auto;
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    color: var(--dark-gray);
    font-size: 1.3rem;
    max-width: 750px;
    margin: 0 auto 4rem;
    font-weight: 300;
}

/* Strategies Section - Enhanced */
.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.5rem;
}

.strategy-card {
    background: white;
    border-radius: var(--section-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    padding: 2.5rem;
    border: none;
    transform: translateY(0);
}

.strategy-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.strategy-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(179, 151, 85, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    color: var(--primary);
    font-size: 2rem;
    transition: var(--transition);
}

.strategy-card:hover .card-icon {
    background: rgba(179, 151, 85, 0.2);
    transform: scale(1.1);
}

.strategy-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    color: var(--secondary);
}

.strategy-card p {
    color: var(--dark-gray);
    margin-bottom: 1.8rem;
    font-weight: 300;
}

.strategy-card ul {
    list-style: none;
    padding-left: 0;
}

.strategy-card ul li {
    margin-bottom: 0.9rem;
    position: relative;
    padding-left: 2rem;
    font-weight: 500;
}

.strategy-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Process Section - Enhanced */
.process-section {
    background: linear-gradient(135deg, #f0f9ff, #e6f4ff);
    border-radius: var(--section-radius);
    overflow: hidden;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-light);
    left: 50%;
    margin-left: -2px;
    border-radius: 10px;
}

.timeline-item {
    position: relative;
    width: 46%;
    padding: 2.5rem;
    background: white;
    border-radius: 18px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

.timeline-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: left;
    border-left: none;
    border-right: 4px solid var(--primary);
}

.timeline-item:nth-child(even) {
    left: 54%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--gradient);
    border: 5px solid white;
    border-radius: 50%;
    top: 2.5rem;
    box-shadow: 0 0 0 2px var(--primary);
}

.timeline-item:nth-child(odd)::after {
    right: -15px;
}

.timeline-item:nth-child(even)::after {
    left: -15px;
}

.timeline-item h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.timeline-item p {
    color: var(--dark-gray);
}

/* Stats Section - Enhanced */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}

.stat-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 18px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-top: 4px solid var(--primary);
}

.stat-number {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--primary);
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1.15rem;
    color: var(--dark-gray);
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.stat-card::after {
    content: attr(data-stat);
    position: absolute;
    bottom: -30px;
    right: -10px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(179, 151, 85, 0.05);
    z-index: 1;
}

/* Testimonials - Enhanced */
.testimonials {
    background-color: #f1f5f9;
    border-radius: var(--section-radius);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    position: absolute;
    top: 1.5rem;
    left: 1.8rem;
    font-size: 5rem;
    color: rgba(179, 151, 85, 0.1);
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--darker-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
    padding-left: 2rem;
}

.testimonial-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-left: 2rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.5rem;
    border: 3px solid var(--primary-light);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.3rem;
    color: var(--secondary);
}

.author-info p {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 500;
}

/* CTA Section - Enhanced */
.cta-section {
    background: var(--gradient);
    color: white;
    text-align: center;
    border-radius: var(--section-radius);
    padding: 5rem 2rem;
    margin: 6rem auto;
    max-width: 950px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.cta-section::before {
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
}

.cta-section::after {
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
}

.cta-content {
    position: relative;
    z-index: 5;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.92;
    max-width: 650px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.btn-light {
    background: white;
    color: var(--primary-dark);
    padding: 1.2rem 3rem;
    font-weight: 700;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    font-size: 1.05rem;
    letter-spacing: 1.2px;
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.92);
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        margin-left: 70px;
        text-align: left !important;
        border-left: 4px solid var(--primary) !important;
        border-right: none !important;
    }
    
    .timeline-item:nth-child(even)::after,
    .timeline-item:nth-child(odd)::after {
        left: -15px;
        right: auto;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
    }
}
.footer-dark {
    background-color: var(--dark); /* fixed dark color for footer */
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark, #d1a845));
}

/* ========== Social Icons ========== */
.social-icon {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--primary, #e7c873);
    color: var(--secondary, #1e1e2f);
    transform: translateY(-5px);
}

/* ========== Highlighted Text ========== */
.highlight {
    position: relative;
    z-index: 1;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(231, 200, 115, 0.3);
    z-index: -1;
    transform: skewX(-15deg);
}

/* ========== Scroll Animations ========== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== Custom Utility Classes ========== */
.bg-custom-light {
    background-color: var(--light, #f8f9fa) !important;
}

.bg-deep-blue {
    background-color: var(--secondary, #1e1e2f);
}

.ptb-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.mb-6 {
    margin-bottom: 5rem !important;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
}

/* ========== Navbar ========== */
.navbar-nav {
    align-items: center;
}

/* ========== Responsive Fixes ========== */
@media (max-width: 768px) {
    .display-title {
        font-size: 2.8rem;
    }

    .hero-section {
        padding: 120px 0 80px;
    }

    .stats-number {
        font-size: 2.8rem;
    }

    .stats-section {
        padding: 40px 20px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .navbar-collapse {
        background-color: #fff;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .stats-item {
        padding: 20px 15px;
    }
}

